home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / samdu220.zip / FDRIVE.H < prev    next >
Text File  |  1993-04-01  |  1KB  |  26 lines

  1. #ifndef __FDRIVE_H__
  2. #define __FDRIVE_H__
  3.  
  4. #include "VDrive.h"
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif /* __cplusplus */
  9.  
  10. VOID far * FAR PASCAL FDriveCreate ( LPCSTR lpczFileName, LPCSTR lpczApplicationTitle, LPCSTR lpczVersion, lpfnHANDLESTATUS lpfnHandleStatus ) ;
  11. VOID       FAR PASCAL FDriveDelete ( VOID far *pCFDrive ) ;
  12. UINT       FAR PASCAL FDriveForceReset ( VOID far *pCFDrive ) ;
  13. UINT       FAR PASCAL FDriveReadSectors ( VOID far *pCFDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  14. UINT       FAR PASCAL FDriveReset ( VOID far *pCFDrive ) ;
  15. UINT       FAR PASCAL FDriveSetRead ( VOID far *pCFDrive, UINT nTempType, UINT nCylinders ) ;
  16. UINT       FAR PASCAL FDriveSetWrite ( VOID far *pCFDrive, UINT nTempType, UINT nCylinders ) ;
  17. UINT       FAR PASCAL FDriveType ( VOID far *pCFDrive ) ;
  18. UINT       FAR PASCAL FDriveWriteSectors ( VOID far *pCFDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  19.  
  20. #ifdef __cplusplus
  21.            }
  22. #endif /* __cplusplus */
  23.  
  24. #endif /* __FDRIVE_H__ */
  25.  
  26.